Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632707 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game

preview.gif cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/preview.gif
82 Views
0 Comments
Media file
style.css cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/style.css
104 Views
0 Comments
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

*:focus {
outline: 0;
index.html cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/index.html
308 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Dot Target game</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Shrikhand"><link rel="stylesheet" href="./style.css">

</head>
readme.md cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/readme.md
150 Views
0 Comments
# Dot Target Game
## Clisk on the Dots That are Moving to Get The Points

![](./preview.gif)
script.js cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/script.js
127 Views
0 Comments
$(document).ready(function() {

let totalPoints = 0;
let points = 0;

$('[class$="-circle"]').on('click', 'span', function(e) {

e.stopPropagation();